home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET 2
/
BCI NET 2.iso
/
archives
/
programming
/
source
/
graphicgems4.lha
/
GemsIV
/
vec_mat
/
ray
/
Light.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-02-06
|
114 b
|
9 lines
#include "Light.h"
istream& operator >> (istream& s, Light& a)
{
s >> *((Object3D*) &a);
s >> a.col;
return s;
}